home *** CD-ROM | disk | FTP | other *** search
- <?xml version="1.0"?>
-
- <?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
-
- <!DOCTYPE dialog SYSTEM "chrome://switchproxy/locale/locale.dtd">
-
- <dialog buttons="accept"
- id="aboutSwitchProxy"
- ondialogaccept="return true"
- title="&about.title;"
- xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
- onload="switchproxy_setVersion()" >
-
- <script type="application/x-javascript" src="chrome://switchproxy/content/globals.js"></script>
-
- <script language="JavaScript">
- <![CDATA[
- function switchproxy_setVersion(){
- var oLabel = document.getElementById("switchproxy-version");
-
- if(oLabel != null && gSwitchProxy_Version != null){
- oLabel.value += " "+ gSwitchProxy_Version;
- }
- }
- ]]>
- </script>
-
- <vbox style="width: 200px;">
- <hbox>
- <label value="&common.product.name;" style="font-weight: bold; margin-right: 2px;" />
- <label value="v" id="switchproxy-version" style="margin-left: 2px;" />
- </hbox>
- <label value="Jeremy Gillick" />
- <label value="http://mozmonkey.com"
- style="color: #0000FF; text-decoration: underline; cursor: pointer;"
- onclick="opener.switchproxy_goToSwitchProxySite(); self.close();" />
- </vbox>
- </dialog>